Hi David,
In
the C language the backslash is a special "escape" character that allows you
to enter non-printable characters by putting a backslash and then a special
character. For example \n is the "new line" character code.
This causes a
problem when you really want a backslash. So a double backslash is used
to enter a slash. See the double backslashes in the original
example.
That
probably was the compiler error message because your character sequence
contains things like \K which is a valid escape character.
Regards
TK